home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / scanf.c < prev    next >
C/C++ Source or Header  |  1988-07-28  |  2KB  |  67 lines

  1. /* 
  2.  * scanf.c --
  3.  *
  4.  *    Source code for the "scanf" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: scanf.c,v 1.6 88/07/28 17:18:43 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <varargs.h>
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * scanf --
  27.  *
  28.  *    Read characters from stdin and parse them into internal
  29.  *    representations.
  30.  *
  31.  * Results:
  32.  *    The values indicated by va_alist are modified to hold
  33.  *    information scanned from stream.  The return value is the
  34.  *    number of fields successfully scanned, or EOF if the string
  35.  *    is empty.  See the man page for details.
  36.  *
  37.  * Side effects:
  38.  *    None.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. #ifndef lint
  44. int
  45. scanf(va_alist)
  46.     va_dcl            /* char *format, then any number of pointers to
  47.                  * values to be scanned from stdin under
  48.                  * control of format. */
  49. {
  50.     char *format;
  51.     va_list args;
  52.  
  53.     va_start(args);
  54.     format = va_arg(args, char *);
  55.     return vfscanf(stdin, format, args);
  56. }
  57. #else
  58. /* VARARGS1 */
  59. /* ARGSUSED */
  60. int
  61. scanf(format)
  62.     char *format;
  63. {
  64.     return 0;
  65. }
  66. #endif lint
  67.